Passed
Push — master ( 7aa1e4...a37cc0 )
by Kevin Van
05:30
created

MosselfestijnPage   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 67
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 60
dl 0
loc 67
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
B render 0 65 1
1
import { graphql } from "gatsby"
2
import { GatsbyImage } from "gatsby-plugin-image"
3
import React, { Component } from "react"
4
5
import SEO from "../components/seo"
6
import Layout from "../layouts/index"
7
8
class MosselfestijnPage extends Component {
9
  render() {
10
    const { affiche } = this.props.data
11
    return (
12
      <Layout>
13
        <SEO
14
          lang="nl-BE"
15
          title="Lunch vd lege portemonnee - Takeaway!"
16
          description="Lege portemonnee Takeaway! - Bestelformulier"
17
          path={this.props.location.pathname}
18
        />
19
        <div className={`limited-width_wrapper`}>
20
          <header>
21
            <h1>Lunch van de lege portemonnee - Takeaway</h1>
22
          </header>
23
          <main>
24
            <h2>Zaterdag 20 februari 2021</h2>
25
            <p>
26
              Door de corona-beperkingen wordt de Lunch vd Lege Portemonne helaas een Take Away versie. Daarom stellen
27
              we een aantal gerechten voor, die standaard bij onze Lunch horen en waarvan u kan genieten bij een wijntje
28
              of drankje bij u thuis.
29
            </p>
30
31
            <p>Op het menu:</p>
32
            <ul>
33
              <li>Ajuinsoep met kaas - 1L: 8€ per portie</li>
34
              <li>Balletjes in tomatensaus met puree: 10€ per portie</li>
35
              <li>Winterstoemp met spekjes en chipolatta: 11€ per portie</li>
36
              <li>Witloof in den oven met puree: 12€ per portie</li>
37
              <li>Dessert - chocomousse of pannenkoeken met suiker (2): 5€</li>
38
            </ul>
39
            <p>
40
              <strong>Bestellen kan tot en met woensdag 17 februari 2021!</strong>
41
            </p>
42
            <p>
43
              Opgelet: Je kan een afhaalmoment kiezen bij het bestellen (16:00 - 20:00). Betalen kan ter plaatse cash
44
              (liefst gepast).
45
            </p>
46
47
            <p>
48
              Wie bijkomende vragen heeft kan terecht op [email protected].
49
              <br />
50
              Alvast bedankt! En graag tot in 2022 voor opnieuw een face-to-face versie van deze Lunch vd Leige
51
              Portemonnee!
52
            </p>
53
54
            <tbkr-bm-widget
55
              restaurant-id="34742560"
56
              source="website"
57
              use-modal="0"
58
              lang="nl"
59
              theme="light"
60
              primary-color="#4b9b48"
61
              takeaway="1"
62
            ></tbkr-bm-widget>
63
            <script src="https://reservations.tablebooker.com/tbkr-widget-import.min.js"></script>
64
65
            <GatsbyImage
66
              image={{
67
                ...affiche.childImageSharp.gatsbyImageData,
68
              }}
69
              alt="Sinterklaas Takeaway"
70
            />
71
          </main>
72
        </div>
73
      </Layout>
74
    )
75
  }
76
}
77
78
export const pageQuery = graphql`
79
  query {
80
    affiche: file(name: { eq: "takeaway-lunch" }) {
81
      ...KCVVFluid960
82
    }
83
  }
84
`
85
86
export default MosselfestijnPage
87